net/http.http2flow.add (method)

22 uses

	net/http (current package)
		h2_bundle.go#L1341: func (f *http2flow) add(n int32) bool {
		h2_bundle.go#L4123: 	sc.flow.add(http2initialWindowSize)
		h2_bundle.go#L4124: 	sc.inflow.add(http2initialWindowSize)
		h2_bundle.go#L5212: 		if !st.flow.add(int32(f.Increment)) {
		h2_bundle.go#L5216: 		if !sc.flow.add(int32(f.Increment)) {
		h2_bundle.go#L5354: 		if !st.flow.add(growth) {
		h2_bundle.go#L5705: 	st.flow.add(sc.initialStreamSendWindowSize)
		h2_bundle.go#L5707: 	st.inflow.add(sc.srv.initialStreamRecvWindowSize())
		h2_bundle.go#L6023: 		ok = sc.inflow.add(n)
		h2_bundle.go#L6025: 		ok = st.inflow.add(n)
		h2_bundle.go#L7391: 	cc.flow.add(int32(http2initialWindowSize))
		h2_bundle.go#L7432: 	cc.inflow.add(http2transportDefaultConnFlow + http2initialWindowSize)
		h2_bundle.go#L8661: 	cs.flow.add(int32(cc.initialWindowSize))
		h2_bundle.go#L8663: 	cs.inflow.add(http2transportDefaultStreamFlow)
		h2_bundle.go#L9126: 		cc.inflow.add(connAdd)
		h2_bundle.go#L9135: 			cs.inflow.add(streamAdd)
		h2_bundle.go#L9165: 			cc.inflow.add(int32(unread))
		h2_bundle.go#L9217: 			cc.inflow.add(int32(f.Length))
		h2_bundle.go#L9279: 			cc.inflow.add(int32(refund))
		h2_bundle.go#L9281: 				cs.inflow.add(int32(refund))
		h2_bundle.go#L9418: 				cs.flow.add(delta)
		h2_bundle.go#L9461: 	if !fl.add(int32(f.Increment)) {